#類別clase
#物件object
class Personality:
    def __init__(self,bloodtype,sexual,pets,is_graduated):
        self.bloodtype = bloodtype
        self.sexual = sexual
        self.pets = pets
        self.is_graduated = is_graduated
person1 = Personality("A","Female",2,True)
print (person1.sexual)
person2 = Personality("O","Male",33,False)
print (person2.pets)
